DevJourney

MATLAB/VIT/Sem I/Ex - 2/q8.m

[x,y] = meshgrid(-2:.2:2);
f = x.*exp(-x.^2-y.^2);
surf(x,y,f)
View on GitHub